From a8df81b27c9e2a87671fd7216f9092951c4b3b92 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 22 May 2020 16:52:31 -0400 Subject: [PATCH] inspector: Drop app-menu support Don't add app menu to the object tree anymore; this property is going away. --- gtk/inspector/object-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/inspector/object-tree.c b/gtk/inspector/object-tree.c index 0de34cf583..361f246a5d 100644 --- a/gtk/inspector/object-tree.c +++ b/gtk/inspector/object-tree.c @@ -452,7 +452,7 @@ object_tree_text_tag_table_get_children (GObject *object) static GListModel * object_tree_application_get_children (GObject *object) { - return list_model_for_properties (object, (const char *[3]) { "app-menu", "menubar", NULL }); + return list_model_for_properties (object, (const char *[2]) { "menubar", NULL }); } static GObject * -- 2.30.2